const compress/flate.huffmanNumChunks
6 uses
compress/flate (current package)
inflate.go#L99: huffmanNumChunks = 1 << huffmanChunkBits
inflate.go#L106: chunks [huffmanNumChunks]uint32 // chunks as described above
inflate.go#L178: h.links = make([][]uint32, huffmanNumChunks-link)
inflate.go#L179: for j := uint(link); j < huffmanNumChunks; j++ {
inflate.go#L213: j := reverse & (huffmanNumChunks - 1)
inflate.go#L730: chunk := h.chunks[b&(huffmanNumChunks-1)]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |